4 // Copyright (c) 2006 Microsoft Corporation. All rights reserved.
6 // The use and distribution terms for this software are contained in the file
7 // named license.txt, which can be found in the root of this distribution.
8 // By using this software in any fashion, you are agreeing to be bound by the
9 // terms of this license.
11 // You must not remove this notice, or any other, from this software.
16 namespace Microsoft
.JScript
{
20 public class LenientStringConstructor
: StringConstructor
{
21 public new Object fromCharCode
;
23 internal LenientStringConstructor(LenientFunctionPrototype parent
, LenientStringPrototype prototypeProp
)
24 : base(parent
, prototypeProp
) {
25 this.noExpando
= false;
26 Type super
= typeof(StringConstructor
);
27 this.fromCharCode
= new BuiltinFunction("fromCharCode", this, super
.GetMethod("fromCharCode"), parent
);